home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / temacd / tiny / tpf-6[1].5.126.exe / Tiny Firewall 2005.msi / webui.dll / APPREP / ARN-ENROLL.JS < prev    next >
Encoding:
Text (UTF-16)  |  2005-08-17  |  16.4 KB  |  237 lines

  1. /*//////////////////////////////////////////////////////////////////////
  2. Filename:          arn-enroll.js
  3. Company Name:      Computer Associates International, Inc.
  4. Legal Copyright: Copyright (c) Computer Associates International, Inc.
  5. Author:          Ales Novak
  6. Product:          Tiny Firewall
  7. Description:      javascript code to get checksum & other info from exe or dll file
  8. ///////////////////////////////////////////////////////////////////////*/
  9.  
  10. // requires sdb-consts.js + sdb-msgs.js
  11. // requires arn-sdbfncs.js + tools.js
  12.  
  13. var CHKS_LABEL_DOES_NOT_EXIST = 0,
  14.     CHKS_LABEL_EXISTS = 1,
  15.     CHKS_CHECKSUM_ALREADY_PRESENT = 2,
  16.     CHKS_DIFFERENT_LABEL_TYPE = 3;
  17.  
  18. ///////////////////////////////////////////////////////////////////////////    
  19. // ER_CalculateChecksum
  20. function ER_CalculateChecksum( strFilePath )
  21. {
  22.     var strChecksum = "";
  23.     
  24.     try {
  25.         // get the PathExpander ActiveX => CLSID:8F6B7CC8-4C0C-46B4-9C81-1C2DD7CFB6C6
  26.         var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
  27.     
  28.         if (!oPathExp)
  29.             return strChecksum;
  30.         
  31.         // let PathExpander calculate the checksum
  32.         strChecksum = oPathExp.ComputeMD5String( strFilePath );
  33.     }
  34.     catch (e) {}
  35.     
  36.     return strChecksum;
  37. }
  38.  
  39. ///////////////////////////////////////////////////////////////////////////    
  40. // ER_GetExeOrDllDescription
  41. function ER_GetExeOrDllDescription( strFilePath )
  42. {
  43.     var strDescription = "";
  44.     
  45.     try {
  46.         // get the PathExpander ActiveX
  47.         var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
  48.     
  49.         if (!oPathExp)
  50.             return strDescription;
  51.         
  52.         // let PathExpander get the description
  53.         strDescription = oPathExp.GetPEDescription( strFilePath );
  54.     }
  55.     catch (e) {}
  56.     
  57.     return strDescription;
  58. }
  59.  
  60. ///////////////////////////////////////////////////////////////////////////    
  61. // ER_GetLabelAndItsChecksumsStatus
  62. function ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser )
  63. {
  64.     // first get the correct LabelList depending on Client x Server parser and Dll x Application
  65.     var labelList;
  66.     if (parseBoolean(bUseClientParser))
  67.         labelList = parseBoolean(bIsDll) ? external.ClientParser(XM_APPREP).DllLabelList : external.ClientParser(XM_APPREP).LabelList;
  68.     else
  69.         labelList = parseBoolean(bIsDll) ? external.ServerParser(XM_APPREP).DllLabelList : external.ServerParser(XM_APPREP).LabelList;
  70.     
  71.     var label;
  72.     
  73.     /*
  74.     // if the label already exists
  75.     var labelEnum = new Enumerator(labelList);
  76.     labelEnum.moveFirst();
  77.     while (!labelEnum.atEnd())
  78.     {
  79.         var strStoredLabel = labelEnum.item().LabelID;
  80.         if (strStoredLabel.toUpperCase() == strLabel.toUpperCase()) // the label already exists
  81.         {
  82.             label = labelEnum.item();
  83.             break;
  84.         }
  85.         labelEnum.moveNext();
  86.     }
  87.     
  88.     if (!label)
  89.         return CHKS_LABEL_DOES_NOT_EXIST;
  90.     */
  91.     try {    
  92.         label = labelList.Get( strLabel );
  93.     } catch(e){
  94.         return CHKS_LABEL_DOES_NOT_EXIST;
  95.     }
  96.     
  97.     if (eLabelType != label.Type)
  98.         return CHKS_DIFFERENT_LABEL_TYPE;
  99.     
  100.     if (strChecksum && eLabelType != LT_NAME && eLabelType != LT_PATH)
  101.     {
  102.         var checksumEnum = new Enumerator(label.ChecksumList);
  103.         checksumEnum.moveFirst();
  104.         while (!checksumEnum.atEnd())
  105.         {
  106.             if (checksumEnum.item().Checksum.toUpperCase() == strChecksum.toUpperCase()) // the checksum already exists
  107.                 return CHKS_CHECKSUM_ALREADY_PRESENT; 
  108.             checksumEnum.moveNext();
  109.         }
  110.     }
  111.      
  112.     return CHKS_LABEL_EXISTS;
  113. }
  114.  
  115. ///////////////////////////////////////////////////////////////////////////    
  116. // ER_EnrollLabel
  117. function ER_EnrollLabel( strLabel, bIsDll, eLabelType, strDescription, strPathOrName, strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB )
  118. {
  119.     //alert( strLabel + " " + bIsDll.toString() + " " + eLabelType.toString() + " " + strDescription  + " " + strPathOrName + " " + strChecksum + " " + iAccessResult.toString() + " " + iAuditLevel.toString() + " " + bUseClientParser.toString() );
  120.     var status = ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser );
  121.     if (CHKS_LABEL_DOES_NOT_EXIST == status)
  122.     {
  123.         AR_AddLabel( strLabel, bIsDll, eLabelType, strDescription, strPathOrName, strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB );
  124.         return;
  125.     }
  126.     alert("Label with the same name already exists");  
  127. }
  128.  
  129. function ER_EnrollAllExeOrDllsFromDir( strDirPath, bSubTree, bIsDll, eLabelType, strGroup, iAccessResult, iAuditLevel, lType, bUseClientParser )
  130. {
  131.     try
  132.     {
  133.         var oList = getLabelList(bIsDll, bUseClientParser);
  134.         var iPreCnt = oList.Count;
  135.         
  136.         var iCnt = oList.EnrollPath(strDirPath, bSubTree? 1 : 0, eLabelType, iAccessResult, iAuditLevel, strGroup, lType );
  137.         
  138.         AR_Save( bUseClientParser );
  139.         
  140.         alert( iCnt + ' files processed, ' + (oList.Count - iPreCnt) + ' labels successfully added.');
  141.     }
  142.     catch (e) 
  143.     {
  144.         alert("Error during enrollment");
  145.     }
  146. }
  147.  
  148. ///////////////////////////////////////////////////////////////////////////    
  149. // ER_EnrollAllExeOrDllsFromDir
  150. /*function ER_EnrollAllExeOrDllsFromDir2( strDirPath, bSubTree, bIsDll, eLabelType, strGroup, iAccessResult, iAuditLevel, bUseClientParser )
  151. {
  152.     try
  153.     {
  154.         if ( strDirPath.substring(strDirPath.length-1) == '\\' )
  155.             strDirPath = strDirPath.substring(0,strDirPath.length-1);
  156.             
  157.         // get the PathExpander ActiveX
  158.         var oPathExp = new ActiveXObject("SBXPathExpander.SBXPathExpander");
  159.     
  160.         if (!oPathExp)
  161.         {
  162.             alert("Cannot load PathExpander ActiveX");
  163.             return;
  164.         }
  165.  
  166.         // prepare the wildcard string for PathExpander->ExpandFilePath2
  167.         var strWildcard;
  168.         if (parseBoolean(bIsDll))
  169.             strWildcard = parseBoolean(bSubTree) ? "%AllDllsInSubTree%" : "%AllDllsInDir%";
  170.         else
  171.             strWildcard = parseBoolean(bSubTree) ? "%AllExecutablesInSubTree%" : "%AllExecutablesInDir%";
  172.         var strFullSearchPath = strDirPath + "\\" + strWildcard;
  173.  
  174.         // get all file paths into SAFEARRAY
  175.         var vbarrExpPath = oPathExp.ExpandFilePath2( strFullSearchPath );
  176.  
  177.         // convert SAFEARRAY into collection
  178.         var arrExpPath = vbarrExpPath.toArray();
  179.         
  180.         var bAvoidSavingSDB = true;
  181.         
  182.         // now do for..each algorithm => Compute the checksum and enroll it
  183.         var key;
  184.         for (key in arrExpPath)   {
  185.               //alert( arrExpPath[key] );
  186.               var strChecksum = (eLabelType != LT_PATH && eLabelType != LT_NAME) ? oPathExp.ComputeMD5String( arrExpPath[key] ) : "";
  187.               var strDescription = oPathExp.GetPEDescription( arrExpPath[key] );
  188.               //var strTimeStamp = oPathExp.GetPETimeStamp( arrExpPath[key] );
  189.               //var strVersion = oPathExp.GetPEVersion( arrExpPath[key] );
  190.               var strPath = arrExpPath[key];
  191.               var i = strPath.lastIndexOf('\\');
  192.             var strLabel = strPath.substring(i + 1);
  193.  
  194.               //var strLabel = arrExpPath[key].substr(strDirPath.length + 1);
  195.               //alert( strLabel + " " + strDescription + " " + strTimeStamp + " " + strVersion + " " + strChecksum );
  196.               //var iIconIdx = oPathExp.GetPEIconIndex( arrExpPath[key] );
  197.               //alert( iIconIdx.toString() );
  198.               
  199.               var strOrigLabel = strLabel;
  200.               var Idx = 2;
  201.               while (true)    // loop is necessary just for the case CHKS_DIFFERENT_LABEL_TYPE or CHKS_LABEL_EXISTS if !strChecksum
  202.               {
  203.                   var status = ER_GetLabelAndItsChecksumsStatus( strLabel, bIsDll, eLabelType, strChecksum, bUseClientParser );
  204.                 //alert( status )
  205.                 if (CHKS_LABEL_DOES_NOT_EXIST == status)  {                // add it to repository
  206.                     AR_AddLabel( strLabel, bIsDll, eLabelType, strDescription, arrExpPath[key], strChecksum, iAccessResult, iAuditLevel, bUseClientParser, bAvoidSavingSDB );
  207.                     break;
  208.                 } else if (CHKS_CHECKSUM_ALREADY_PRESENT == status)    {    // do nothing
  209.                     break; 
  210.                 } else if (CHKS_LABEL_EXISTS == status && strChecksum) {// add the checksum to an existing label
  211.                     AR_AddChecksumToLabel( strLabel, bIsDll, strChecksum, arrExpPath[key], bUseClientParser, bAvoidSavingSDB );
  212.                     break;
  213.                 } else { // try to change the label name to a different one
  214.                     strLabel = strOrigLabel + "_" + Idx.toString();
  215.                     Idx++;
  216.                     if (Idx > 10) // do the max number of attempts here...
  217.                         break;
  218.                 }
  219.             }
  220.             
  221.               if (strGroup && Idx < 10)
  222.               {
  223.                   bShowErrorAlerts = false;
  224.                   AR_AddLabelToGroup( strLabel, strGroup, bIsDll, bUseClientParser, bAvoidSavingSDB);
  225.                   bShowErrorAlerts = true;
  226.               }
  227.         }
  228.         
  229.         AR_Save( bUseClientParser );
  230.         //external.Save();
  231.     }
  232.     catch (e) 
  233.     {
  234.         alert("Error during enrollment");
  235.     }
  236. }*/
  237.